home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ DVD Region Code.xpl < prev    next >
Text File  |  2000-12-13  |  2KB  |  39 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="1"
  4. "UIPATH"="Hardware\DVD Drive"
  5. "NAME"="DVD Region Code"
  6. "VERSION"="1.01"
  7. "OSVERSION"="10101"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="DVD Region Code"
  10. "DESCRIPTION 1"="This sets the regional encoding for DVD drives [a default value of 1 signifies US and Canada]."
  11. "DESCRIPTION 2"="There are nine regions for coding DVD disks from 0 to 9: 0 = All Regions; 1 = U.S., Canada, U.S. Territories; 2 = Japan, Europe, South Africa, and Middle East (including Egypt); 3 = Southeast Asia and East Asia (including Hong Kong); 4 = Australia, New Zealand, Pacific Islands, Central America, Mexico, South America, and the Caribbean; 5 = Eastern Europe (Former Soviet Union), Indian subcontinent, Africa, North Korea, and Mongolia; 6 = China; 7 = Reserved; 8 = Special international venues (airplanes, cruise ships, etc.)."
  12. "DESCRIPTION 3"="In some cases a DVD disk from one region may not run on a player from another region."
  13. "DESCRIPTION 4"="To enable universal regionality, enter "0" [without quotes]."
  14. "AUTHOR"="Ojatex@aol.com"
  15. "CONTACTURL"="http://members.aol.com/ojatex/"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"="For additional X-Setup program information, go to http://www.xteq.com."
  18. "COMMENT 2"="Thanks to CptSiskoX for the tip and settings."
  19.  
  20. sP="HKLM\Software\Microsoft\Windows\CurrentVersion\DVD_Region"
  21.  
  22. Sub Plugin_Initialize 
  23.   i=RegReadValue(sP)
  24.   SetUIElement 1,i
  25. End Sub
  26.  
  27. Sub Plugin_CheckData(ElementIndex)
  28. End Sub
  29.  
  30. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  31.  i=GetUIElement(1)
  32.  
  33.     Call RegWriteValue(sP,i,1)
  34.  
  35. End Sub
  36.  
  37. Sub Plugin_Terminate 
  38. End Sub
  39.